home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Demos / Bowers Development / AppMaker 2.0b5 / Examples / ODF / AMSample / Sources / Binding.k < prev    next >
Encoding:
Text File  |  1996-06-03  |  1.1 KB  |  43 lines  |  [TEXT/CWIE]

  1. //========================================================================================
  2. //
  3. //    File:                Binding.k
  4. //    Release Version:    $ ODF 1 $
  5. //
  6. //    Copyright:    (c) 1993 - 1996 by Apple Computer, Inc., all rights reserved.
  7. //
  8. //========================================================================================
  9.  
  10. #ifndef BINDING_K
  11. #define BINDING_K
  12.  
  13. // Kind
  14. #define kAMSampleKind "+//ISO 9070/ANSI::113722::US::CI LABS::BowersDev:Kind:AMSample"
  15.  
  16. // Class ID
  17. #define kAMSampleEditor "BowersDev::AMSample"
  18.  
  19. // Editor User String
  20. #define kAMSampleEditorUserString "AMSample R1"
  21.  
  22. // Kind User String
  23. #define kAMSampleKindUserString "AMSample"
  24.  
  25. // AMSample OSType
  26. #define kAMSampleOSType 'AOXX'
  27.  
  28. // PlatformType
  29. #define kTEXTOSType             'TEXT'
  30. #define kDragKindUserString1 "Text file"
  31. #define kDragKindUserString2 "Text data"
  32.  
  33. // NMAP constants
  34. #define kKindCategoryMapId            128
  35. #define kEditorKindMapId            kKindCategoryMapId+1
  36. #define kEditorUserStringMapId        kEditorKindMapId+1
  37. #define kKindUserStringMapId        kEditorUserStringMapId+1
  38. #define kOldMacOSTypeMapId            kKindUserStringMapId+1
  39. #define kEditorPlatformKinds        kOldMacOSTypeMapId + 1
  40.  
  41. #endif
  42.  
  43.